home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 7
/
Apprentice-Release7.iso
/
Source Code
/
C
/
Applications
/
POV-Ray 3.0.2
/
Scenes
/
POV3DEMO
/
OTHER
/
IFELSE2.POV
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-03-05
|
322 b
|
16 lines
|
[
TEXT/POV3
]
// Persistence Of Vision raytracer version 3.0 sample file.
// Illustrates that #if #else can be nested and it works with #include
#version 3.0
global_settings { assumed_gamma 2.2 }
#if (clock < 1.0)
#include "shear1.pov"
#else
#if (clock < 2.0)
#include "shear2.pov"
#else
#include "shear3.pov"
#end
#end